home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Total Network Tools 2002
/
NextStepPublishing-TotalNetworkTools2002-Win95.iso
/
Archive
/
Web Server
/
TinyWeb Server.EXE
/
CGITEST.ZIP
/
HELLO.C
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-10-22
|
352 b
|
17 lines
//////////////////////////////////////////////////////////////////////////
//
// CGI Testing Example
//
// Copyright (C) 1997 RIT Research Labs
//
//////////////////////////////////////////////////////////////////////////
#include <stdio.h>
void main(void)
{
printf("Content-Type: text/plain\n\n");
printf("Hello, world\n");
}